We obtain the following file in http://chandra.harvard.edu/photo/openFITS/casa.html
Cas A 0.5-1.5 keV (soft) Fits File [4.0 MB] --> casa_0.5-1.5keV.fits
Cas A 1.5-3.0 keV (medium) Fits File [4.0 MB] --> casa_1.5-3.0keV.fits
Cas A 4.0-6.0 keV (hard) Fits File [4.0 MB] --> casa_4.0-6.0keV.fits
In [1]:
from astropy.utils.data import download_file
soft = download_file('http://chandra.harvard.edu/photo/2009/casa/fits/casa_0.5-1.5keV.fits', cache=True)
medium = download_file('http://chandra.harvard.edu/photo/2009/casa/fits/casa_1.5-3.0keV.fits', cache=True)
hard = download_file('http://chandra.harvard.edu/photo/2009/casa/fits/casa_4.0-6.0keV.fits', cache=True)
In [2]:
import aplpy
aplpy.make_rgb_image((soft,medium,hard),'casa_rgb.png')
In [3]:
from IPython.display import Image
Image(filename='casa_rgb.png')
Out[3]: